c34c10871e19b08f7e067518ab76add127a036fa,baleen/baleen-annotators/src/main/java/uk/gov/dstl/baleen/annotators/cleaners/NormalizeTimes.java,NormalizeTimes,normalize,#Entity#,42

Before Change


						formatter.applyPattern(TO24HR);
					}
				} catch (ParseException exception) {
					System.out.printf("h# Parse Exception occurred 2 %d %s",exception.getErrorOffset(),exception.getMessage());
					return timeString;
				}
				

After Change


						formatter.applyPattern(TO24HR);
					}
				} catch (ParseException exception) {
					getMonitor().warn("Parse exception occurred at {} for time {}", exception.getErrorOffset(), timeSb.toString(), exception);
					return timeString;
				}